I used [ infront of the elemets names instead of the correct symbol because it kept thinking that i wanted to write the real code and messed everything up.
| # | Element | Description | | -- | ---------------- | -------------------------------------------------------- | | 1 | `[html>` | Root element of an HTML document | | 2 | `[head>` | Container for metadata (not shown on the page) | | 3 | `[title>` | Sets the title of the webpage (shown in the browser tab) | | 4 | `[meta>` | Specifies metadata like charset, author, etc. | | 5 | `[link>` | Links external resources like CSS | | 6 | `[style>` | Embeds CSS styles directly in HTML | | 7 | `[script` | Embeds or links JavaScript code | | 8 | `[body>` | Main content area of the HTML document | | 9 | `[h1>` to `[h6>` | Headings from largest (`[h1>`) to smallest (`[h6>`) | | 10 | `[p>` | Defines a paragraph | | 11 | `[a>` | Defines a hyperlink | | 12 | `[img>` | Embeds an image | | 13 | `[ul>` | Unordered (bulleted) list | | 14 | `[ol>` | Ordered (numbered) list | | 15 | `[li>` | List item in `[ul>` or `[ol>` | | 16 | `[div>` | Generic container (block-level) | | 17 | `[span>` | Generic container (inline-level) | | 18 | `[br>` | Line break | | 19 | `[hr>` | Horizontal rule (line) | | 20 | `[strong>` | Bold text with semantic importance | | 21 | `[em>` | Italic text with emphasis | | 22 | `[form>` | Container for user input fields | | 23 | `[input>` | Input field | | 24 | `[button>` | Clickable button | | 25 | `[label>` | Label for an input field | | 26 | `[textarea>` | Multi-line text input | | 27 | `[select>` | Drop-down select menu | | 28 | `[option>` | Option in a `[select>` menu | | 29 | `[table>` | Defines a table | | 30 | `[iframe>` | Embeds another webpage or content | .